home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / beacon.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  682 b   |  34 lines

  1. StaticShapeData DefaultBeacon
  2. {
  3.     className = "Beacon";
  4.     damageSkinData = "objectDamageSkins";
  5.  
  6.     shapeFile = "sensor_small";
  7.     maxDamage = 0.1;
  8.     maxEnergy = 200;
  9.  
  10.    castLOS = true;
  11.    supression = false;
  12.     mapFilter = 2;
  13.     //mapIcon = "M_marker";
  14.     visibleToSensor = true;
  15.    explosionId = flashExpSmall;
  16.     debrisId = flashDebrisSmall;
  17. };
  18.                                                                                          
  19. function Beacon::onEnabled(%this)
  20. {
  21.    GameBase::setIsTarget(%this,true);
  22. }
  23.  
  24. function Beacon::onDisabled(%this)
  25. {
  26.    GameBase::setIsTarget(%this,false);
  27. }
  28.  
  29. function Beacon::onDestroyed(%this)
  30. {
  31.    GameBase::setIsTarget(%this,false);
  32.     $TeamItemCount[GameBase::getTeam(%this) @ "Beacon"]--;
  33. }
  34.